Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633465 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game

bubble-sprites.png cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game/bubble-sprites.png
92 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game/style.css
106 Views
0 Comments
body{
/* background-color: gray; */
background-image: linear-gradient(to right, rgb(184, 208, 217),rgb(247, 122, 122));
}

div{
border-radius: 30px;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game/index.html
288 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bubble Shooter Game</title>
<!-- Linking CSS & JS -->
<script type='text/javascript' src='script.js'></script>
<link rel="stylesheet" href="style.css">
readme.md cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game/readme.md
159 Views
0 Comments
# Bubble Shooter Game:
>It's a **Bubble Shooter Game**, made using HTML,CSS,JS . The Code is Responsive and here Player has given some random balls and he/she has to shoot similar coloured balls to increase Score.
## Tech Stack :
HTML,CSS,JS

## Screenshot:
![image](https://user-images.githubusercontent.com/77873383/167983029-f243afb2-db63-4700-ae35-f429e3f3c2de.png)

script.js cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game/script.js
173 Views
0 Comments

window.onload = function() {
// Get the canvas and context
var canvas = document.getElementById("viewport");
var context = canvas.getContext("2d");

// Timing/second
var lastframe = 0;